home *** CD-ROM | disk | FTP | other *** search
- on exitFrame
- global gReleaseMouse, gHelp
- if gReleaseMouse then
- if gHelp then
- openHelp()
- go("notes")
- else
- go("notes")
- end if
- else
- if rollOver(5) then
- set the castNum of sprite 5 to cast "file.down"
- pupSprites(1, 48, 0)
- updateStage()
- go("file")
- end if
- if rollOver(10) then
- nothing()
- end if
- if rollOver(11) then
- set the castNum of sprite 11 to cast "help.down"
- updateStage()
- else
- set the castNum of sprite 11 to cast "help.up"
- updateStage()
- end if
- go(the frame)
- end if
- end
-
- on mouseUp
- global gReleaseMouse, gHelp
- set gReleaseMouse to 1
- if rollOver(11) then
- set gHelp to 1
- pupSprites(1, 48, 0)
- updateStage()
- else
- pupSprites(1, 48, 0)
- updateStage()
- end if
- end
-